home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HamCall (October 1991)
/
HamCall (Whitehall Publishing)(1991).bin
/
prgming
/
ctutor
/
chrstrg.c
< prev
next >
Wrap
Text File
|
1990-10-14
|
504b
|
26 lines
/* Chapter 7 - Program 1 */
main()
{
char name[5]; /* define a string of characters */
name[0] = 'D';
name[1] = 'a';
name[2] = 'v';
name[3] = 'e';
name[4] = 0; /* Null character - end of text */
printf("The name is %s\n",name);
printf("One letter is %c\n",name[2]);
printf("Part of the name is %s\n",&name[1]);
}
/* Result of execution
The name is Dave
One letter is v
Part of the name is ave
*/